Skip to main content

Reconcile Client Invoice Payment

PUT /tms/client-invoice/reconcile-payment/{uuid}

Description

This endpoint is used to reconcile a client invoice payment. The reconciliation process involves updating the invoice with the amount paid and the payment method.

Parameters

  • uuid (string, path, required): The unique identifier for the client invoice.
  • tenantId (string, header, required): The ID of the tenant.
  • countryCode (string, header, required): The country code.

Request Body

  • Media Type: application/json

Example Value

{
"amountPaid": 1,
"paymentMethod": "string"
}

Responses

200 OK Client Invoice Payment Reconciled

Media type

Controls Accept header.

Example Value

{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}

400 Bad Request

Invalid request

404 Not Found

Resource not found

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PUT \ 
--url /tms/client-invoice/reconcile-payment/{uuid} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!